Telegram Web K with changes to work inside I2P
https://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.2 KiB
95 lines
2.2 KiB
5 years ago
|
const path = require('path');
|
||
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||
|
|
||
|
module.exports = {
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.s[ac]ss$/i,
|
||
|
use: [
|
||
|
// Creates `style` nodes from JS strings
|
||
|
'style-loader',
|
||
|
// Translates CSS into CommonJS
|
||
|
'css-loader',
|
||
|
// Compiles Sass to CSS
|
||
|
{
|
||
|
loader: 'resolve-url-loader'
|
||
|
},
|
||
|
{
|
||
|
loader: 'sass-loader',
|
||
|
options: {
|
||
|
sourceMap: true
|
||
|
}
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
test: /\.css$/i,
|
||
|
use: ['style-loader', 'css-loader'],
|
||
|
},
|
||
|
{
|
||
|
test: /\.ts?$/,
|
||
|
use: 'ts-loader',
|
||
|
exclude: /node_modules/,
|
||
|
},
|
||
|
{
|
||
|
test: /\.(woff2?|ttf|otf|eot|svg|jpg)$/,
|
||
|
exclude: /node_modules/,
|
||
|
loader: 'file-loader',
|
||
|
options: {
|
||
|
outputPath: 'assets/',
|
||
|
publicPath: 'assets/',
|
||
|
name: '[folder]/[name].[ext]'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
test: /\.worker\.(js|ts)$/,
|
||
|
use: { loader: 'worker-loader' }
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
resolve: {
|
||
|
extensions: [ '.ts', '.js' ],
|
||
|
},
|
||
|
entry: './src/index.ts',
|
||
|
/* entry: {
|
||
|
index: './src/index.ts',
|
||
|
'lottie-web': ['lottie-web']
|
||
|
//lottieLoader: './src/lib/lottieLoader.ts'
|
||
|
}, */
|
||
|
//devtool: 'inline-source-map',
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, 'public'),
|
||
|
//filename: 'bundle.js',
|
||
|
filename: "[name].bundle.js",
|
||
|
chunkFilename: "[name].chunk.js"
|
||
|
},
|
||
|
devServer: {
|
||
|
contentBase: path.join(__dirname, 'public'),
|
||
|
watchContentBase: true,
|
||
|
compress: true,
|
||
|
port: 9000
|
||
|
},
|
||
|
|
||
|
plugins: [
|
||
|
new HtmlWebpackPlugin({
|
||
|
filename: `index.html`,
|
||
|
template: 'public/index_template.html',
|
||
|
inject: true,
|
||
|
/* minify: {
|
||
|
removeComments: true,
|
||
|
collapseWhitespace: true,
|
||
|
removeRedundantAttributes: true,
|
||
|
useShortDoctype: true,
|
||
|
removeEmptyAttributes: true,
|
||
|
removeStyleLinkTypeAttributes: true,
|
||
|
keepClosingSlash: true,
|
||
|
minifyJS: true,
|
||
|
minifyCSS: true,
|
||
|
minifyURLs: true
|
||
|
}, */
|
||
|
chunks: "all"
|
||
|
})
|
||
|
],
|
||
|
};
|