rai-react/webpack.config.js
Kacper Donat c4ba27a59c initial
2020-01-06 22:06:12 +01:00

39 lines
1.0 KiB
JavaScript

const path = require('path');
module.exports = {
devtool: "inline-source-map",
resolve: {
extensions: [".ts", ".tsx", ".js"]
},
output: {
path: path.resolve('./public/')
},
module: {
rules: [
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
use: ["ts-loader"]
}, {
test: /\.s[ac]ss$/,
use: ["style-loader", "css-loader?sourceMap", "sass-loader?sourceMap"]
}, {
test: /\.css$/,
use: ["style-loader", "css-loader"]
}, {
test: /\.(png|svg|jpg|gif)$/,
use: 'file-loader',
exclude: [
path.resolve('./resources/icons')
]
}, {
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: 'file-loader'
}
]
},
devServer: {
contentBase: path.resolve("./public/"),
port: 3000
}
};