mirror of
https://github.com/anatolykopyl/vk-bingo.git
synced 2026-03-26 12:54:25 +00:00
27 lines
481 B
JavaScript
27 lines
481 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
const path = require("path");
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
additionalData: `
|
|
@use 'sass:math';
|
|
@import '@/styles/_prepend.scss';
|
|
`,
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
port: 8080
|
|
}
|
|
})
|