-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
61 lines (60 loc) · 1.67 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// vue.config.js
const path = require("path");
module.exports = {
publicPath: "",
outputDir: path.resolve(__dirname, "./dist/"),
assetsDir: "./assets/",
css: {
loaderOptions: {
sass: {
additionalData: `
@import "./src/UI/scss/_variable.scss";
@import "@/UI/scss/_mixins.scss";
`,
},
},
},
configureWebpack: {
entry: "./src/main.js",
/* 밖에다 해야 인식됨 */
/* output: {
path: path.resolve(__dirname, "./dist"),
publicPath: '/dist/',
} */
/* module: {
rules: [
{
test: /\.css$/,
use: ["style-loader", "css-loader"], // css -> js 변환
},
{
test: /\.vue$/,
use: ["vue-loader"], // vue -> js 변환
},
{
test: /\.js$/,
use: ["babel-loader"], // ES6문법 -> 호환가능한 js 변환
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
use: ["file-loader"], // 이미지파일 -> js파일로 변환
options:{
name: '[name].[ext]?[hash]'
}
},
],
}, */
},
devServer: {
// 현재는 https://john-i-gotta-go.herokuapp.com/ 라는 프록시 서버 생성
/* proxy: {
'/' : {
"target": 'http://apis.data.go.kr',
"pathRewrite": {'^/': ''},
"changeOrigin": true,
"secure": false
}
} */
},
};