We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 124c4fa commit 24bfddaCopy full SHA for 24bfdda
netlify.yml
@@ -13,6 +13,7 @@ dev:
13
NODE_ENV: development
14
15
plugins:
16
- - package: "@netlify/plugin-sitemap"
17
- config:
18
- buildDir: dist
+ # - package: "@netlify/plugin-sitemap"
+ # config:
+ # buildDir: dist
19
+ - type: ./plugins/doThing
plugins/doThing/index.js
@@ -0,0 +1,10 @@
1
+function netlifyPlugin() {
2
+ return {
3
+ name: "my-first-plugin",
4
+ onBuild: () => {
5
+ console.log("Site has built!");
6
+ }
7
+ };
8
+}
9
+
10
+module.exports = netlifyPlugin;
0 commit comments