Giter Club home page Giter Club logo

Comments (4)

imRohan avatar imRohan commented on July 28, 2024 1

For Pantry, webpack is only used to build front-end assets so I'm not sure if using the DefinePlugin could help us to bypass the ReCaptcha, Slack, SendGrid logic.

However, we should definitely add this as well since we could display some neat developer debug items on the frontend (such as ID's & loadtimes)

from pantry.

imRohan avatar imRohan commented on July 28, 2024 1

@kaffarell I've opened up a PR to address this issue, check it out here. This PR will stop Pantry from attempting to post to any 3rd party services (Slack/CRM) and disables the ReCaptcha.

Just an FYI but when you create an account Pantry currently log's the Pantry ID to your console

from pantry.

imRohan avatar imRohan commented on July 28, 2024

@kaffarell That's a great idea, and one that will really speed up local development. Perhaps we can use a NODE_ENV variable to check if Pantry is running locally, and if so bypass certain features.

from pantry.

kaffarell avatar kaffarell commented on July 28, 2024

That would be a good idea! We could also use the Define Plugin in webpack:

module.exports = (env, argv) => {
    return {
        ....
        plugins: [
            new webpack.DefinePlugin({
                '__ENVIRONMENT__': JSON.stringify(argv.mode)
            }),
        ],
      ...
    }
};

and then call it like this:

webpack --mode=development

and the in the code:

console.log('Mode: ' + __ENVIRONMENT__);

from pantry.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.