Skip to content

Commit 3518c86

Browse files
Update demo copyright headers.
1 parent c191083 commit 3518c86

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

demo/configs/webpack/common.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) Meta Platforms, Inc. and affiliates.
2+
// All rights reserved.
3+
4+
// This source code is licensed under the license found in the
5+
// LICENSE file in the root directory of this source tree.
6+
17
const { resolve } = require("path");
28
const HtmlWebpackPlugin = require("html-webpack-plugin");
39
const FriendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin");

demo/configs/webpack/dev.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) Meta Platforms, Inc. and affiliates.
2+
// All rights reserved.
3+
4+
// This source code is licensed under the license found in the
5+
// LICENSE file in the root directory of this source tree.
6+
17
// development config
28
const { merge } = require("webpack-merge");
39
const commonConfig = require("./common");

demo/configs/webpack/prod.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) Meta Platforms, Inc. and affiliates.
2+
// All rights reserved.
3+
4+
// This source code is licensed under the license found in the
5+
// LICENSE file in the root directory of this source tree.
6+
17
// production config
28
const { merge } = require("webpack-merge");
39
const { resolve } = require("path");

demo/postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) Meta Platforms, Inc. and affiliates.
2+
// All rights reserved.
3+
4+
// This source code is licensed under the license found in the
5+
// LICENSE file in the root directory of this source tree.
6+
17
const tailwindcss = require("tailwindcss");
28
module.exports = {
39
plugins: ["postcss-preset-env", 'tailwindcss/nesting', tailwindcss],

demo/tailwind.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// Copyright (c) Meta Platforms, Inc. and affiliates.
2+
// All rights reserved.
3+
4+
// This source code is licensed under the license found in the
5+
// LICENSE file in the root directory of this source tree.
6+
17
/** @type {import('tailwindcss').Config} */
28
module.exports = {
39
content: ["./src/**/*.{html,js,tsx}"],

0 commit comments

Comments
 (0)