diff --git a/fontify.json b/fontify.json new file mode 100644 index 0000000..923703c --- /dev/null +++ b/fontify.json @@ -0,0 +1,7 @@ +{ + "modules": [ + "bootstrap", + "font-awesome" + ], + "dest": "public" +} \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..d777df3 --- /dev/null +++ b/webpack.config.js @@ -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' + } +}