diff options
author | 2021-01-04 04:00:10 +0300 | |
---|---|---|
committer | 2021-01-06 09:35:59 +0300 | |
commit | 0da45505d7b5bc4d9b1e4aa1e9489f8b1f165725 (patch) | |
tree | 2729127b39f68b3969ef58309f4f51457c3bc89c /webpack.config.js | |
parent | Implements Input Types (diff) |
Adds Question Rendering
Adds a question component, and calls it on form page. Adds styling for
input types and form page. Lays foundation for validation and
submission.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index 93e7e9d..1264ba1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -65,6 +65,12 @@ module.exports = { }, { test: /\.svg$/, loader: '@svgr/webpack' + }, { + test: /\.css$/, + loader: 'raw-loader', + options: { + esModule: false + } }] }, devServer: { |