From 8eae698aba1b026109389dd463d4baf36f6c77b6 Mon Sep 17 00:00:00 2001 From: Aldarien Date: Thu, 25 Mar 2021 21:13:03 -0300 Subject: [PATCH] Design controls --- fontify.json | 7 +++++++ webpack.config.js | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 fontify.json create mode 100644 webpack.config.js 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' + } +}