generated from alecodes/base-template
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
import {defineConfig} from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [],
|
|
server: {
|
|
port: 3001,
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
input: [
|
|
"frontend/assets/js/index.ts",
|
|
"frontend/assets/css/style.scss"
|
|
],
|
|
},
|
|
}
|
|
});
|