25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
589 B

3 년 전
import {defineConfig} from 'vite'
3 년 전
import vue from '@vitejs/plugin-vue'
3 년 전
import {resolve} from "path";
import eslintPlugin from 'vite-plugin-eslint'
3 년 전
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(),
eslintPlugin({
include: ['src/**/*.js', 'src/**/*.vue', 'src/*.js', 'src/*.vue']
})],
3 년 전
server: {
host: '0.0.0.0',
port: 3000,
open: true
},
resolve: {
alias: [
{
find: '@',
replacement: resolve(__dirname, 'src')
}
]
}
3 년 전
})