@ou-imdt/create
Version:
Command line tool to create team boilerplate.
14 lines (13 loc) • 372 B
JavaScript
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import path from 'node:path'
export default defineConfig({
base: "",
build: { target: "esnext" },
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'imd-icons': path.resolve(__dirname, './node_modules/@awesome.me/kit-4b5ffe0e68')
}
}
})