Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bw-bestperf
SAM
Commits
3518c86b
Commit
3518c86b
authored
Apr 13, 2023
by
SpencerWhitehead
Browse files
Update demo copyright headers.
parent
c1910835
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
0 deletions
+30
-0
demo/configs/webpack/common.js
demo/configs/webpack/common.js
+6
-0
demo/configs/webpack/dev.js
demo/configs/webpack/dev.js
+6
-0
demo/configs/webpack/prod.js
demo/configs/webpack/prod.js
+6
-0
demo/postcss.config.js
demo/postcss.config.js
+6
-0
demo/tailwind.config.js
demo/tailwind.config.js
+6
-0
No files found.
demo/configs/webpack/common.js
View file @
3518c86b
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
const
{
resolve
}
=
require
(
"
path
"
);
const
{
resolve
}
=
require
(
"
path
"
);
const
HtmlWebpackPlugin
=
require
(
"
html-webpack-plugin
"
);
const
HtmlWebpackPlugin
=
require
(
"
html-webpack-plugin
"
);
const
FriendlyErrorsWebpackPlugin
=
require
(
"
friendly-errors-webpack-plugin
"
);
const
FriendlyErrorsWebpackPlugin
=
require
(
"
friendly-errors-webpack-plugin
"
);
...
...
demo/configs/webpack/dev.js
View file @
3518c86b
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
// development config
// development config
const
{
merge
}
=
require
(
"
webpack-merge
"
);
const
{
merge
}
=
require
(
"
webpack-merge
"
);
const
commonConfig
=
require
(
"
./common
"
);
const
commonConfig
=
require
(
"
./common
"
);
...
...
demo/configs/webpack/prod.js
View file @
3518c86b
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
// production config
// production config
const
{
merge
}
=
require
(
"
webpack-merge
"
);
const
{
merge
}
=
require
(
"
webpack-merge
"
);
const
{
resolve
}
=
require
(
"
path
"
);
const
{
resolve
}
=
require
(
"
path
"
);
...
...
demo/postcss.config.js
View file @
3518c86b
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
const
tailwindcss
=
require
(
"
tailwindcss
"
);
const
tailwindcss
=
require
(
"
tailwindcss
"
);
module
.
exports
=
{
module
.
exports
=
{
plugins
:
[
"
postcss-preset-env
"
,
'
tailwindcss/nesting
'
,
tailwindcss
],
plugins
:
[
"
postcss-preset-env
"
,
'
tailwindcss/nesting
'
,
tailwindcss
],
...
...
demo/tailwind.config.js
View file @
3518c86b
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
/** @type {import('tailwindcss').Config} */
/** @type {import('tailwindcss').Config} */
module
.
exports
=
{
module
.
exports
=
{
content
:
[
"
./src/**/*.{html,js,tsx}
"
],
content
:
[
"
./src/**/*.{html,js,tsx}
"
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment