-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
61 lines (58 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const path = require("path");
const webpack = require("webpack");
const CopyPlugin = require("copy-webpack-plugin");
const DotenvWebpack = require('dotenv-webpack');
const HtmlWebpackPlugin = require("html-webpack-plugin");
if (process.env.NODE_ENV !== 'production') {
const dotenv = require('dotenv').config();
}
const googleAPIKey = process.env.GOOGLE_API_KEY;
console.log("API Key in webpack config: " + googleAPIKey);
module.exports = {
entry: __dirname + '/src/index.js',
output: {
path: __dirname + '/dist',
publicPath: '/',
filename: 'main.js'
},
module: {
rules: [
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
},
{
test: /\.(png|svg|jpg|gif)$/,
use: ["file-loader"],
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: ["file-loader"],
},
],
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
}),
new CopyPlugin({
patterns: [
{ from: 'radius-checker.png', to: '.' },
{ from: 'assets', to: './assets' },
],
}),
new DotenvWebpack(),
new HtmlWebpackPlugin({
inject: false,
template: path.join(__dirname, 'src', 'views', 'index.html'), // 'src/views/index.html',
apiUrl: `https://maps.googleapis.com/maps/api/js?key=${googleAPIKey}&callback=initMap&libraries=places&v=weekly`
}),
],
devServer: {
port: 8085,
static: {
directory: path.join(__dirname, 'dist')
}
},
};