Design controls
This commit is contained in:
7
fontify.json
Normal file
7
fontify.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"modules": [
|
||||
"bootstrap",
|
||||
"font-awesome"
|
||||
],
|
||||
"dest": "public"
|
||||
}
|
10
webpack.config.js
Normal file
10
webpack.config.js
Normal 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'
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user