This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import GSAP from 'gsap' | |
import each from 'lodash/each' | |
import map from 'lodash/map' | |
import Prefix from 'prefix' | |
import Title from 'animations/Title' | |
import Gallery from 'animations/Gallery' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import NormalizeWheel from 'normalize-wheel'; | |
import each from 'lodash/each' | |
import About from 'pages/About' | |
import Home from 'pages/Home' | |
class App { | |
constructor () { | |
this.createContent(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable no-undef */ | |
const path = require('path') | |
const webpack = require('webpack'); //to access built-in plugins | |
const CopyWebpackPlugin = require('copy-webpack-plugin') | |
const MiniCssExtractPlugin = require('mini-css-extract-plugin') | |
const ImageMinimizerPlugin = require('image-minimizer-webpack-plugin'); | |
const { CleanWebpackPlugin } = require('clean-webpack-plugin') | |
const TerserPlugin = require("terser-webpack-plugin"); |