-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
41 lines (39 loc) · 1.05 KB
/
webpack.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
const path = require('path');
const webpack = require("webpack")
module.exports = {
// モードの設定、v4系以降はmodeを指定しないと、webpack実行時に警告が出る
mode: 'development',
// エントリーポイントの設定
entry: [
/*"jquery",
"jquery-ui",
"jquery-ui-touch-punch",*/
'./src/js/app.js'
],
// 出力の設定
output: {
// 出力するファイル名
filename: 'app.js',
// 出力先のパス(v2系以降は絶対パスを指定する必要がある)
path: path.join(__dirname, 'docs/js')
},
devServer: {
contentBase: path.join(__dirname, 'docs'),
compress: true,
port: 9000
}
/*
plugins: [
new webpack.ProvidePlugin({
"$": "jquery",
"jQuery": "jquery",
"window.jQuery": "jquery",
"window.$": "jquery"
})],
resolve: {
alias: {
'jquery-ui': 'jquery-ui',
'jquery-ui-touch-punch': 'jquery-ui-touch-punch'
}
},*/
};