header screen big

This commit is contained in:
2024-06-18 13:07:41 +02:00
parent c107e38ca8
commit a668919637
155 changed files with 8528 additions and 185 deletions
+34
View File
@@ -0,0 +1,34 @@
const webpack = require("webpack");
const path = require("path");
let config = {
mode: 'development',
entry: [
"./js/reha.js",
"./scss/reha.scss"
],
output: {
path: path.resolve(__dirname, "./dist"),
filename: "./bundle.js"
},
module: {
rules: [
{
test: /\.scss$/i,
use: [
{
loader: 'file-loader',
options: {
name: 'css/bundle.css',
}
},
// Compile le Sass en CSS
"sass-loader"
],
},
],
}
}
module.exports = config;