Design controls

This commit is contained in:
2021-03-25 21:13:03 -03:00
parent 965bac5d67
commit 8eae698aba
2 changed files with 17 additions and 0 deletions

7
fontify.json Normal file
View File

@ -0,0 +1,7 @@
{
"modules": [
"bootstrap",
"font-awesome"
],
"dest": "public"
}

10
webpack.config.js Normal file
View File

@ -0,0 +1,10 @@
const path = require('path')
module.exports = {
context: path.resolve(__dirname),
entry: './resources/js/app.js',
output: {
path: path.resolve(__dirname),
filename: './public/js/app.js'
}
}