You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
340 B
11 lines
340 B
import { defineConfig } from "vite"
|
|
import { resolve } from 'node:path'
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@inkeon/core/dist/style.css": resolve(__dirname, "../../packages/core/dist/style.css"),
|
|
"@inkeon/core": resolve(__dirname, "../../packages/core/dist/index.mjs"),
|
|
}
|
|
}
|
|
})
|